home *** CD-ROM | disk | FTP | other *** search
/ Practical Algorithms for Image Analysis / Practical Algorithms for Image Analysis.iso / TARFILE.GZ / tarfile / ch_4.5 / xbdy / bdy.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-09-11  |  729 b   |  26 lines

  1. /* 
  2.  * bdy.h
  3.  * 
  4.  * Practical Algorithms for Image Analysis
  5.  * 
  6.  * Copyright (c) 1997, 1998, 1999 MLMSoftwareGroup, LLC
  7.  */
  8.  
  9. /*
  10.  * BDY.H
  11.  *
  12.  */
  13.  
  14. /*function prototypes */
  15.  
  16. /* bdy.c */
  17. extern void curvature_points (unsigned char *window[], int ir, int jmax, int imax);
  18. extern int horizontal (int ir, int jc);
  19. extern int vertical (int ir, int jc);
  20. extern void linkage (Image * imgIn, Image * imgOut, int value);
  21. extern void poly (struct curv_points *first_point);
  22. extern struct curv_points *match_in_list (struct curv_points *current_point);
  23. extern void delete_list (struct curv_points *current_point, int list);
  24. extern void print_curv (void);
  25. extern void create_edge (struct curv_points *old_point, struct curv_points *new_point);
  26.